home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / xedus_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  81 lines

  1. #
  2. # This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. # Ref: James Bercegay of the GulfTech Security Research Team
  4. # This script is released under the GNU GPLv2
  5.  
  6. if(description)
  7. {
  8.   script_id(14647);
  9.   script_bugtraq_id(11071);
  10.   script_version("$Revision: 1.8 $");
  11.   script_name(english:"Xedus XSS");
  12.  
  13.  
  14.  desc["english"] = "
  15. The remote host runs Xedus Peer to Peer webserver.
  16. This version is vulnerable to cross-site scripting attacks.
  17.  
  18. With a specially crafted URL, an attacker can cause arbitrary
  19. code execution resulting in a loss of integrity.
  20.  
  21. Solution: Upgraded to the latest version,
  22. remove .x files located in ./sampledocs folder
  23.     
  24. Risk factor : Medium";
  25.   script_description(english:desc["english"]);
  26.  
  27.   script_summary(english:"Checks XSS in Xedus");
  28.   script_category(ACT_GATHER_INFO);
  29.   script_copyright(english:"This script is Copyright (C) 2004 David Maciejak");
  30.   script_dependencies("xedus_detect.nasl", "cross_site_scripting.nasl");
  31.   script_family(english:"Peer-To-Peer File Sharing");
  32.   script_require_ports("Services/www", 4274);
  33.   exit(0);
  34. }
  35.  
  36. include("http_func.inc");
  37. include("http_keepalive.inc");
  38.  
  39. port = get_http_port(default:4274);
  40. if ( ! get_kb_item("xedus/" + port + "/running")) exit(0);
  41.  
  42. if ( get_kb_item("www/" + port + "/generic_xss") ) exit(0);
  43.  
  44. if(get_port_state(port))
  45. {
  46.  soc = http_open_socket(port);
  47.  if(soc)
  48.  {
  49.   buf = http_get(item:"/test.x?username=<script>foo</script>", port:port);
  50.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  51.   if( r == NULL )exit(0);
  52.   if(egrep(pattern:"<script>foo</script>", string:r))
  53.   {
  54.      http_close_socket(soc);
  55.      security_warning(port);
  56.     exit(0);
  57.   }
  58.   buf = http_get(item:"/TestServer.x?username=<script>foo</script>", port:port);
  59.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  60.   if( r == NULL )exit(0);
  61.   if(egrep(pattern:"<script>foo</script>", string:r))
  62.   {
  63.      http_close_socket(soc);
  64.      security_warning(port);
  65.     exit(0);
  66.   }
  67.   buf = http_get(item:"/testgetrequest.x?param=<script>foo</script>", port:port);
  68.   r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  69.   if( r == NULL )exit(0);
  70.   if(egrep(pattern:"<script>foo</script>", string:r))
  71.   {
  72.      http_close_socket(soc);
  73.      security_warning(port);
  74.     exit(0);
  75.   }
  76.   http_close_socket(soc);
  77.  }
  78. }
  79. exit(0);
  80.